File: /var/www/html/dashboard.orbiwheels.com/resources/views/emails/contact.blade.php
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>New Contact Message</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #eee;
border-radius: 8px;
background-color: #f9f9f9;
}
h2 {
color: #2c3e50;
}
p {
margin: 5px 0;
}
.label {
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h2>New Contact Message</h2>
<p><span class="label">Full Name:</span> {{ $contact->name }}</p>
<p><span class="label">Email:</span> {{ $contact->email }}</p>
<p><span class="label">Phone:</span> {{ $contact->phone ?? '-' }}</p>
<p><span class="label">Subject:</span> {{ $contact->subject }}</p>
<p><span class="label">Message:</span></p>
<p>{{ $contact->message }}</p>
<hr>
<p>This message was sent from your website contact form.</p>
</div>
</body>
</html>